c58be9ec14ce7a0bdc8e9b3515d746142ef8d95d,core/baseLanguage/baseLanguage/source_gen/jetbrains/mps/baseLanguage/behavior/ClassConcept_Behavior.java,ClassConcept_Behavior,virtual_getOwnMethods_1906502351318572840,#SNode#,116

Before Change


  }

  public static List<SNode> virtual_getOwnMethods_1906502351318572840(SNode thisNode) {
    List<SNode> baseMethodDeclarations = SLinkOperations.getTargets(thisNode, "method", true);
    ListSequence.fromList(baseMethodDeclarations).addSequence(ListSequence.fromList(SLinkOperations.getTargets(thisNode, "staticMethod", true)));
    return baseMethodDeclarations;
  }

After Change


  }

  public static List<SNode> virtual_getOwnMethods_1906502351318572840(SNode thisNode) {
    List<SNode> baseMethodDeclarations = new ArrayList<SNode>();
    ListSequence.fromList(baseMethodDeclarations).addSequence(ListSequence.fromList(SLinkOperations.getTargets(thisNode, "method", true)));
    ListSequence.fromList(baseMethodDeclarations).addSequence(ListSequence.fromList(SLinkOperations.getTargets(thisNode, "staticMethod", true)));
    return baseMethodDeclarations;
  }